Public Shadows Function TryGetValue( _
ByVal As , _
ByRef As _
) As Boolean
Dim instance As SafeDictionary(Of TKey,TValue)
Dim key As
Dim value As
Dim value As Boolean
value = instance.TryGetValue(key, value)
public new bool TryGetValue(
,
out
)
public: new bool TryGetValue(
,
[PARAMFLAG::Out]
)
public:
new bool TryGetValue(
,
[Out]
)
Parameters
- key
- Key used for lookup.
- value
- Value to set. Null if the key-value pair does not exist in the Dictionary.
Return Value
Returns true if the key value pair exists in the Dictionary, false otherwise.